
.carousel-control.right, .carousel-control.left {
	background-image: none;
	background-color: white;
	width: 99%;
}

.carousel-indicators li {
	border-color: #408080;
	bottom: -50px;
}

.carousel-indicators li.active {
	background-color: grey;
	bottom: -50px;
}

.carousel .item .carousel-inner {
	width: 100%;
	height: 500px;
	margin: auto;
}

.carousel-caption {
	/*width: 100%;*/
	left: 0%;
	top: 50% !important;
	transform: translateY(-120%);
	text-align: center;
	bottom: initial;
	color: #666;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,1);
}

.carouselText {
	float: left;
	width: 100%;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	color: teal;
}

/*FROM BOOTSTRAP*/

.mycarousel {
	position: relative
}

.mycarousel-inner {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 360px;
}

	.mycarousel-inner > .item {
		display: none;
		position: relative;
		-webkit-transition: .6s ease-in-out left;
		transition: .6s ease-in-out left
	}

		.mycarousel-inner > .item > img,
		.mycarousel-inner > .item > a > img {
			line-height: 1
		}

	.mycarousel-inner > .active,
	.mycarousel-inner > .next,
	.mycarousel-inner > .prev {
		display: block
	}

	.mycarousel-inner > .active {
		left: 0
	}

	.mycarousel-inner > .next,
	.mycarousel-inner > .prev {
		position: absolute;
		top: 0;
		width: 100%
	}

	.mycarousel-inner > .next {
		left: 100%
	}

	.mycarousel-inner > .prev {
		left: -100%
	}

		.mycarousel-inner > .next.left,
		.mycarousel-inner > .prev.right {
			left: 0
		}

	.mycarousel-inner > .active.left {
		left: -100%
	}

	.mycarousel-inner > .active.right {
		left: 100%
	}

.mycarousel-control {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 15%;
	opacity: .5;
	filter: alpha(opacity=50);
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,.6)
}

	/*.mycarousel-control.left {
		background-image: -webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));
		background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
	}

	.mycarousel-control.right {
		left: auto;
		right: 0;
		background-image: -webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));
		background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
	} */

	/* Used in preference to above, as the above have grey gradients that do not look right on this page*/
	.mycarousel-control.left {
		background-image: none;
		background-image: none;
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
	}

	.mycarousel-control.right {
		left: auto;
		right: 0;
		background-image: none;
		background-image: none;
		background-repeat: repeat-x;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
	}

	.mycarousel-control:hover,
	.mycarousel-control:focus {
		outline: 0;
		color: #fff;
		text-decoration: none;
		opacity: .9;
		filter: alpha(opacity=90)
	}

	.mycarousel-control .icon-prev,
	.mycarousel-control .icon-next,
	.mycarousel-control .glyphicon-chevron-left,
	.mycarousel-control .glyphicon-chevron-right {
		position: absolute;
		top: 50%;
		z-index: 5;
		display: inline-block
	}

	.mycarousel-control .icon-prev,
	.mycarousel-control .glyphicon-chevron-left {
		left: 50%
	}

	.mycarousel-control .icon-next,
	.mycarousel-control .glyphicon-chevron-right {
		right: 50%
	}

	.mycarousel-control .icon-prev,
	.mycarousel-control .icon-next {
		width: 20px;
		height: 20px;
		margin-top: -10px;
		margin-left: -10px;
		font-family: serif
	}

		.mycarousel-control .icon-prev:before {
			content: '\2039'
		}

		.mycarousel-control .icon-next:before {
			content: '\203a'
		}

.mycarousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 15;
	width: 60%;
	margin-left: -30%;
	padding-left: 0;
	list-style: none;
	text-align: center
}

	.mycarousel-indicators li {
		display: inline-block;
		width: 10px;
		height: 10px;
		margin: 1px;
		text-indent: -999px;
		border: 1px solid #666;
		border-radius: 30px;
		cursor: pointer;
		background-color: black;
		background-color: rgba(0,0,0,0)
	}

	.mycarousel-indicators .active {
		margin: 0;
		width: 12px;
		height: 12px;
		background-color: black
	}

.mycarousel-caption {
	position: relative;
	/*left: 25%;
	right: 25%;  Only work if position above is set tp absolute*/
	bottom: 20px;
	z-index: 10;
	padding-top: 0px;
	padding-bottom: 50px;
	color: grey;
	text-align: center;
	text-shadow: 0 1px 1px rgba(0,0,0,.6)
}

	.mycarousel-caption .btn {
		text-shadow: none
	}

@media screen and (min-width:768px) {
	.mycarousel-control .glyphicon-chevron-left,
	.mycarousel-control .glyphicon-chevron-right,
	.mycarousel-control .icon-prev,
	.mycarousel-control .icon-next {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -15px;
		font-size: 30px
	}

	.mycarousel-indicators {
		bottom: 20px
	}
}

.mycarousel-inner > .item > img,
.mycarousel-inner > .item > a > img {
	display: inline-flex;
	max-width: 100%;
	height: auto;
}

